<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs"
Inherits="WebApplication14.WebForm2" %>
<!DOCTYPE html>
<html>
<head>
<title>Page Submission Counter</title>
</head>
<body>
<form id="form1" runat="server">
<h2>Page Submission Counter</h2>
<!-- Label to display count -->
<asp:Label ID="Label1" runat="server" Text="Page submitted 0 times." Font Bold="True"></asp:Label>
<br /><br />
<!-- Button to submit page -->
<asp:Button ID="Button1" runat="server" Text="Submit Page"
OnClick="Button1_Click" />
</form>
</body>
</html>